home *** CD-ROM | disk | FTP | other *** search
/ Planning for Your Retirement / Planning For Your Retirement - ESX Interactive CD-ROM.iso / install.bat < prev    next >
Encoding:
DOS Batch File  |  1994-09-30  |  761 b   |  33 lines

  1. @echo off
  2. echo  
  3. if "%1" == "" goto getname
  4. echo FPLAN Retirement Financial Forecaster Install
  5. md %1
  6. if not errorlevel 1 goto nogo2
  7. copy . %1
  8. if not errorlevel 1 goto nogo3
  9. echo  
  10. echo Type RETIRE from install directory to start.
  11. goto end
  12. :nogo1
  13. echo  
  14. echo Type Install C:\PATH where PATH is the desired install directory.
  15. goto end
  16. :nogo2
  17. echo  
  18. echo Could not create directory %1.
  19. echo Installaton NOT successful.
  20. goto end
  21. :nogo3
  22. echo  
  23. echo An error was encountered while copying files.
  24. echo Installation NOT successful.
  25. goto end
  26. :getname
  27. choice /c:yn No install path specified. Install to C:\RETIRE?
  28. if errorlevel 2 goto nogo1
  29. install C:\RETIRE
  30. :end
  31. echo  
  32. echo Thank you for choosing FPLAN Retirement Financial Forecaster.
  33.